home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / kiss-0.11 / kiss-0 / kiss / src / getline / testgl.c < prev   
C/C++ Source or Header  |  1993-11-28  |  257b  |  18 lines

  1. #include <stdio.h>
  2. #include "getline.h"
  3.  
  4. main()
  5. /* 
  6.  * just echo user input lines, letting user edit them and move through
  7.  * history list
  8.  */
  9. {
  10.     char *p;
  11.  
  12.     do {
  13.     p = getline("PROMPT>>>> ");
  14.     gl_histadd(p);
  15.     fputs(p, stdout);
  16.     } while (*p != 0);
  17. }
  18.